home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / f2c / may_5_92.lha / f2c.VMay_5_1992 / libF77 / abort_.c next >
C/C++ Source or Header  |  1992-05-07  |  123b  |  10 lines

  1. #include "stdio.h"
  2. #include "f2c.h"
  3.  
  4. extern VOID sig_die();
  5.  
  6. VOID abort_()
  7. {
  8. sig_die("Fortran abort routine called", 1);
  9. }
  10.